home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2003 #8 / K-CD-8-2003.ISO / Eraser / EraserSetup.exe / {app} / Examples / Delphi / Eraser.dpr next >
Encoding:
Text File  |  2002-08-04  |  220 b   |  13 lines

  1. Program Project1;
  2. uses
  3.   Forms,
  4.   eraserdll in 'eraserdll.pas',
  5.   form1 in 'form1.pas'  {Form1Cls};
  6.  
  7.  
  8. begin
  9.   Application.Initialize;
  10.   Application.CreateForm( TForm1Cls, Form1Cls);
  11.   Application.Run;
  12. end.
  13.